home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha Extra 2004 January / CyberMycha Extra 1-2004 (Poland) (Disc 2).bin / Pippi / common.cst / 00043_autoEffectsRepeated.ls < prev    next >
Encoding:
Text File  |  2001-09-04  |  475 b   |  29 lines

  1. property meSprite, autoTix
  2.  
  3. on beginSprite me
  4.   autoTix = the timer + random(500)
  5.   meSprite = sprite(me.spriteNum)
  6.   meSprite.static = 1
  7. end
  8.  
  9. on autoTrig me
  10.   if meSprite.playing = 0 then
  11.     meSprite.static = 0
  12.     meSprite.play()
  13.   end if
  14. end
  15.  
  16. on exitFrame me
  17.   if the timer > autoTix and the timer < autoTix + 10 then
  18.     autoTrig me
  19.     autoTix = the timer + random(500)
  20.   end if
  21. end
  22.  
  23. on setStatic me
  24.   if meSprite.playing = 0 then
  25.     meSprite.static = 1
  26.   end if
  27. end
  28.  
  29.